overlapping joint - ترجمة إلى العربية
DICLIB.COM
أدوات لغة الذكاء الاصطناعي
أدخل كلمة أو عبارة بأي لغة 👆
اللغة:     

ترجمة وتحليل الكلمات بواسطة الذكاء الاصطناعي

في هذه الصفحة يمكنك الحصول على تحليل مفصل لكلمة أو عبارة باستخدام أفضل تقنيات الذكاء الاصطناعي المتوفرة اليوم:

  • كيف يتم استخدام الكلمة في اللغة
  • تردد الكلمة
  • ما إذا كانت الكلمة تستخدم في كثير من الأحيان في اللغة المنطوقة أو المكتوبة
  • خيارات الترجمة إلى الروسية أو الإسبانية، على التوالي
  • أمثلة على استخدام الكلمة (عدة عبارات مع الترجمة)
  • أصل الكلمة

overlapping joint - ترجمة إلى العربية

Overlapping subproblem

overlapping joint      
وصلة متراكبة
lap joint         
WOODWORKING JOINT
Half lap; Cross lap; Halving joint; Half-lap joint; Lap jointing; Lap joints; Overlap joint
وصلة تراكب
Joint session         
SESSION WHEN TWO (OR MORE) NORMALLY SEPARATE DELIBERATIVE BODIES MEET FOR A SPECIFIC PURPOSE
Joint convention; Joint sitting
جلسة ، مشتركة

تعريف

synarthrosis
[?s?n?:'?r??s?s]
¦ noun (plural synarthroses -si:z) Anatomy an immovable joint between bones connected by fibrous tissue (e.g. the sutures of the skull).
Origin
C16: from mod. L., from Gk sunarthrosis, from sun- 'together' + arthrosis 'jointing' (from arthron 'joint').

ويكيبيديا

Overlapping subproblems

In computer science, a problem is said to have overlapping subproblems if the problem can be broken down into subproblems which are reused several times or a recursive algorithm for the problem solves the same subproblem over and over rather than always generating new subproblems.

For example, the problem of computing the Fibonacci sequence exhibits overlapping subproblems. The problem of computing the nth Fibonacci number F(n), can be broken down into the subproblems of computing F(n − 1) and F(n − 2), and then adding the two. The subproblem of computing F(n − 1) can itself be broken down into a subproblem that involves computing F(n − 2). Therefore, the computation of F(n − 2) is reused, and the Fibonacci sequence thus exhibits overlapping subproblems.

A naive recursive approach to such a problem generally fails due to an exponential complexity. If the problem also shares an optimal substructure property, dynamic programming is a good way to work it out.